home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / utility / 95 / pascal / fmtconst.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-01-15  |  605 b   |  22 lines

  1. {===========================================================================
  2.  
  3.         CONSTant declarations for FMTUTILS.
  4.         Include in your CONST declarations.
  5.  
  6. ============================================================================}
  7.  
  8.    DriveA = 0;          { Drive A is 0... }
  9.    DriveB = 1;          { Drive B is 1... }
  10.  
  11.    SngSid40 = 0;        { Types of drive formats available... }
  12.    DblSid40 = 1;        { same as ProtoBoot function in XBIOS }
  13.    SngSid80 = 2;
  14.    DblSid80 = 3;
  15.  
  16.    RetStat = -1;        { for WrtVer }
  17.    Off = 0;
  18.    On = 1;
  19.  
  20. { EOF: FMTCONST.PAS }
  21.  
  22.